home *** CD-ROM | disk | FTP | other *** search
/ Champak 122 / Vol 122.iso / games / super_cr.swf / scripts / DefineSprite_380 / frame_228 / DoAction.as
Encoding:
Text File  |  2011-01-06  |  182 b   |  12 lines

  1. stop();
  2. ball.onEnterFrame = function()
  3. {
  4.    this._x -= 100;
  5.    this._y += 3;
  6.    if(this._x < - Stage.width / 2)
  7.    {
  8.       play();
  9.       delete ball.onEnterFrame;
  10.    }
  11. };
  12.